home *** CD-ROM | disk | FTP | other *** search
/ Gigantic Games 2 / Gigantic Games 2.iso / pc / _w_ / wanderer / src / makefile.amiga < prev    next >
Makefile  |  1994-12-23  |  798b  |  25 lines

  1. #==================================================================
  2. # This makefile is for the AMIGA with the Lattice 5.02 LMK utility.
  3. #==================================================================
  4.  
  5. # Makefile for wanderer - modified by Bill Randle 6/30/88
  6. # modified again by play@cwi.nl
  7. # and again by me.. maujp@uk.ac.warwick.cu
  8. # and again by mab@druwy.att.com for AMIGA
  9.  
  10. OBJ = m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o
  11.  
  12. CFLAGS = -cw -cs -iamiga
  13. LIBS = lib:lc.lib lib:amiga.lib
  14.  
  15. # amiga-specific source files are in the "amiga" subdirectory
  16. CURSES = amiga/curses.o
  17. SOUNDS = amiga/sounds.o
  18.  
  19. all:    wanderer
  20.  
  21. wanderer:    $(OBJ) $(CURSES) $(SOUNDS)
  22.     blink to wanderer from lib:c.o $(OBJ) $(CURSES) $(SOUNDS) lib $(LIBS) sc sd batch nd
  23.  
  24. # $(OBJ): wand_head.h
  25.